Socket
Socket
Sign inDemoInstall

dedent

Package Overview
Dependencies
Maintainers
2
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dedent

A string tag that strips indentation from multi-line strings. ⬅️


Version published
Weekly downloads
24M
decreased by-6.28%
Maintainers
2
Weekly downloads
 
Created

What is dedent?

The dedent npm package is a utility for stripping indentation from multi-line strings. It is commonly used to make template literals more readable by removing the leading whitespace that is introduced by indenting the code for readability purposes.

What are dedent's main functionalities?

Remove indentation from multi-line strings

This feature allows you to write multi-line strings in your code with indentation for readability, and then process them with dedent to remove the extra leading whitespace.

const dedent = require('dedent');

const text = dedent`
    Line one
    Line two
    Line three
`;
console.log(text); // 'Line one\nLine two\nLine three'

Other packages similar to dedent

Keywords

FAQs

Package last updated on 11 Apr 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc